home *** CD-ROM | disk | FTP | other *** search
/ Utilities Professional 1-1500 / Utilities Professional 1-1500 (1994)(WPD)[!].iso / 07511000 / var0763.dms / var0763.adf / devs / mountlist < prev    next >
Text File  |  1991-11-27  |  3KB  |  128 lines

  1. /*  
  2. Installs null-handler V 0.0 (C) Gunnar Nordmark
  3. */
  4.  
  5. null:
  6.   Handler = L:null-handler
  7.   Stacksize = 500
  8.   Priority = 5
  9.     GlobVec = 1
  10. #
  11. /* MountList for V1.3 */
  12.  
  13. /*  Mount Entry for the new Console Handler */
  14.  
  15. NEWCON: 
  16.     Handler = L:Newcon-Handler
  17.     Priority = 5
  18.     StackSize = 1000
  19.     mount = 1
  20. #
  21.  
  22. /* This is an example of a non-filing system mount using a handler written
  23.    in C.
  24. */
  25.  
  26. SPEAK:     
  27.     Handler = L:Speak-Handler
  28.     Stacksize = 6000
  29.     Priority = 5
  30.     GlobVec = -1
  31. #
  32.  
  33. /*  This is an example of an alternative type of non-filing device mount,
  34.     used to mount the non-buffered serial handler
  35. */
  36.  
  37. AUX:
  38.     Handler = L:Aux-Handler
  39.     Stacksize = 1000
  40.     Priority = 5
  41. #
  42. /*  This is a non-filing system device */
  43.  
  44. PIPE:      
  45.     Handler = L:Pipe-Handler
  46.     Stacksize = 6000
  47.     Priority = 5
  48.     GlobVec = -1
  49. #
  50.  
  51. /* This is an example of a mount list entry for using the recoverable 
  52.    ram disk.  Depending on the amount of memory you wish to devote to
  53.    it, you may want to change the HighCyl value.
  54. */
  55.  
  56. RAD:       Device = ramdrive.device
  57.            Unit   = 0
  58.            Flags  = 0
  59.            Surfaces  = 2
  60.            BlocksPerTrack = 11
  61.            Reserved = 2
  62.            Interleave = 0
  63.            LowCyl = 0  ;  HighCyl = 21
  64.            Buffers = 5
  65.            BufMemType = 1
  66.            bootpri = -129
  67. #
  68.  
  69. /* Mount a 5.25" disk drive to be mounted as DF2: */
  70.  
  71. DF2:       Device = trackdisk.device
  72.            Unit   = 2
  73.            Flags  = 1
  74.            Surfaces  = 2
  75.            BlocksPerTrack = 11
  76.            Reserved = 2
  77.            Interleave = 0
  78.            LowCyl = 0  ;  HighCyl = 39
  79.            Buffers = 20
  80.            BufMemType = 3
  81. #
  82.  
  83. /* An example mount entry using the fast file system with a partition
  84.    of the hard disk using the 2090 disk controller.  PREP has been
  85.    used to create the first partition (up to cylinder 20).  The second
  86.    partition is MOUNTed, using the following entry:
  87.    NOTE: Some hard disk drivers require more stack than specified here.
  88.    Some may required less.
  89.    (The hard disk is not included; this is only an example.)
  90. */
  91.  
  92. FAST:
  93.     Device = hddisk.device
  94.     FileSystem = l:FastFileSystem
  95.     Unit   = 1
  96.     Flags  = 0
  97.     Surfaces  = 4
  98.     BlocksPerTrack = 17
  99.     Reserved = 2
  100.     Interleave = 0
  101.     LowCyl = 21  ;  HighCyl = 800
  102.     Buffers = 30
  103.     GlobVec = -1
  104.     BufMemType = 1
  105.     Mount = 1
  106.     DosType = 0x444F5301
  107.     StackSize = 4000
  108. #
  109.  
  110. /* Let's say you have an A2000 with an internal drive, and an external
  111.    drive, and you want to refer to the external drive as DF1: as well
  112.    as DF2:   Well, this MountList entry will do it for you.  This technique
  113.    can be extended to provide you with a drive A: and B: if you really
  114.    want.
  115. */
  116.  
  117. DF1:       Device = trackdisk.device
  118.            Unit   = 2
  119.            Flags  = 1
  120.            Surfaces  = 2
  121.            BlocksPerTrack = 11
  122.            Reserved = 2
  123.            Interleave = 0
  124.            LowCyl = 0  ;  HighCyl = 79
  125.            Buffers = 20
  126.            BufMemType = 3
  127. #
  128.